home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / forth / pfe-0.000 / pfe-0 / pfe-0.9.13 / src / config / OS2-ICC / options.mk < prev    next >
Encoding:
Text File  |  1995-05-18  |  1.2 KB  |  46 lines

  1. #
  2. # OS2-ICC/options.mk -    Part of Makefile for PFE, compiler options
  3. #            for WATCOM-C on OS/2, DOS or Windows/NT.
  4. #
  5. # - the Makefile works with dmake in OS/2
  6. #   (dmake - Copyright (c) 1990,1991 by Dennis Vadura, Version 3.80, PL 0),
  7. #   and the way I configured it (default) dmake uses COMSPEC as command line
  8. #   interpreter which in my case (default) is CMD.EXE.
  9. #   If you use gnu-make and/or a unix-like shell as command line interpreter,
  10. #   be prepared to get errors. One possible cause is the neccessary quoting
  11. #   of a possible `\' in $(PREFIX). I must leave it up to you to get it right.
  12. #
  13.  
  14. # Where you store online help files and other stuff.
  15. PREFIX    = "C:"        # define a C-string, path delimiter \\ inside ""
  16. PFELIB    = "C:\\lib\\pfe"
  17. PFEHLP    = "C:\\lib\\pfe\\help"
  18.  
  19. SYSTEM    = OS2
  20. CC    = icc
  21. CL    = icc
  22. CPP    = icc /pd
  23. LD    = $(CL)
  24.  
  25. # /Sm    allow "migration" language extensions
  26. # /Se    all language extensions except "migration"
  27. # /Sp4    alignment of data on 4 Byte boundaries
  28. # /W3    produce all message types
  29. # /Q    do not display logo
  30. OPTIONS    = /Sm /Se /Sp4 /W3 /Q
  31.  
  32. # /O    optimize
  33. # /g4    for a 486 processor
  34. OPTIM    = /O /g4
  35.  
  36. DEBUG    = /Ti
  37.  
  38. STRIP    = 
  39.  
  40. LIBS    = 
  41.  
  42. TERM_O    = term-wat$o
  43. SYS_O    = unix$o
  44.  
  45.  
  46.